All Questions
74 questions
1vote
1answer
246views
Use sshfs session to run commands on the remote
Something has happened with the SSH process on a remote server so that now when trying to connect it rants: kex_exchange_identification: read: Connection reset by peer It looks like the SSH daemon ...
1vote
1answer
398views
Processes in uninterruptible sleep when the server is not responding
I'm using sshfs to mount and interact with directories and files located on a remote server. The command I'm using is: sshfs -o follow_symlinks host:dir mountpoint -o reconnect Sometimes, after a ...
1vote
1answer
1kviews
sshfs/fuse set limit/max size for a mounted folder on the ssh server for the connected user with sshd_config?
How can i set a limit size for a mounted sshfs/fuse folder in sshd_config? With this command i sshfs/fuse a folder from the server to a folder on my machine. sshfs -o IdentityFile=/home/user/.ssh/[KEY]...
1vote
0answers
281views
Total file system freezes after server disconnection with sshfs
I access a server through vpn (with forticlient sslvpn) and mount a file system on my laptop with sshfs. But sometimes i get randomly disconnected from the vpn. When this happens not only I lose ...
2votes
0answers
1kviews
Why is SSHFS so much less stable than SSH?
If I'm on a very slow and/or slightly hiccupy internet connection, and I ssh [email protected], the connection will mostly stay up. If there's particularly bad lag, output (and echoed input) will take ...
1vote
0answers
2kviews
automatically reset sshfs when it locks up, remount fails unless done manually
i have 2 local dirs on my server mounted on a remote server. Local maintains connections with autossh -M 23 -R 24:localhost:22 user@server While remote mounts with dirs-sshfs.sh sshfs -o reconnect,...
1vote
2answers
964views
Resume incomplete disk image with dd over ssh
What I did so far I wanted to create a disk image of my server HDD partition and copy it to my desktop (client). I used the following command on the server: dd if=/dev/md3 status=progress bs=500k | ...
2votes
2answers
2kviews
Browse files through SCP - Works with WinSCP but not from Linux
I can connect to my SSH server using WinSCP from Windows and by selecting the file protocol "SCP", selecting "SFTP" does not work" for this server. I am desperately trying to ...
2votes
1answer
1kviews
Mount sshfs and elevate priviliges (sudo)
I mount a remote directory using sshfs: sshfs myuser@myserver:/ /path/to/mountpoint This works just fine. But I need to acces directories on myserver that are only accessible by root. root login is ...
0votes
1answer
151views
need help with sshfs
I can't get sshfs to work, no matter what I try it won't accept my password. My hostname is netnoob44 and my username is seeder, and I am trying to use it like this. sudo sshfs -o allow_other,...
0votes
1answer
252views
ssh into mac from raspberry pi
I am trying to mount a shared drive that exists on my mac in my raspberry pi. I tried searching many different threads on stackoverflow and stackexchange and couldn't find any working solutions. I ...
0votes
1answer
2kviews
What's the default port of SSHFS?
I tried to Google this and I found results. Either this is not very documented, either there's something I don't understand but should. It seems like it may be port 9876 like in the documentation, ...
7votes
2answers
2kviews
SSHFS/SFTP : Vim hangs when trying to edit file over sshfs and can't upload file over MTU size over sftp
My university provides an ssh access to the students university accounts, and I just set up an sshfs to access some folders on my remote account. I am running pop_os on my local machine and using ...
0votes
1answer
669views
Adding entries to fstab results in emergency mode
This is my local system configuration. NAME="elementary OS" VERSION="5.0 Juno" I am mounting my remote server's file system on a subdirectory by this command, which is working fine. sudo sshfs -o ...
1vote
2answers
841views
How to use both ssh and sshfs through VPN with single connection?
I am used to mount remote filesystem by sshfs to edit code and view files and also login via ssh to run the code and any commands. Now I have to connect to the network via VPN before I can ssh/fs ...